home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
-
- Flash.c
-
- A starter main file for writing programs with the
- THINK Class Library
-
- Copyright © 1990 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "flApp.h"
-
-
- void main()
-
- {
- flApp *theApp;
-
- theApp = new flApp;
-
- theApp->IflApp();
- theApp->XcmdRun();
- theApp->Exit();
- }
-